removed Makefile-mini's
authorØyvind Kolås <ok@src.gnome.org>
Wed, 17 Aug 2005 18:46:34 +0000 (18:46 +0000)
committerØyvind Kolås <ok@src.gnome.org>
Wed, 17 Aug 2005 18:46:34 +0000 (18:46 +0000)
ChangeLog
Makefile-mini [deleted file]
babl/Makefile-mini [deleted file]

index 3d84d364c985620a6d8eeee09f40e1d53cf6427f..0b3658adabee521bba49b6d8e73b2f2bc9178428 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-08-17  Øyvind Kolås  <pippin@gimp.org>
+
+       * Makefile-mini
+       * babl/Makefile-mini: removed
+
 2005-08-17  Øyvind Kolås  <pippin@gimp.org>
 
        * configure.ac: added babl/Makefile to AC_CONFIG_FILES().
diff --git a/Makefile-mini b/Makefile-mini
deleted file mode 100644 (file)
index d54c438..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-# Minimal makefile to test that babl compiles, and for running
-# introspection/sanity tests, will not build an actual library
-
-all:
-       make -f Makefile-mini -C babl
-       tests/nop
-introspect:
-       make -f Makefile-mini -C babl ../tests/introspect
-       tests/introspect
-clean:
-       make -f Makefile-mini -C babl clean
diff --git a/babl/Makefile-mini b/babl/Makefile-mini
deleted file mode 100644 (file)
index aad334d..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-# This makeile is used for more rapid test compilations than
-# autofoo allows, it will not build a usable libray though.
-
-
-TARGETS =                              \
-       ../tests/nop                    \
-       ../tests/introspect
-
-default: $(TARGETS)
-
-CFLAGS = -Wall -Werror -g -O0 -I./babl-base  -I. -I..
-LDADD  = -lm
-
-BABL_OBJECTS=                                  \
-       babl.o                                  \
-       babl-base/babl-base.o                   \
-       babl-base/babl-base-types.o             \
-       babl-base/babl-base-components.o        \
-       babl-base/babl-base-conversions.o       \
-       babl-base/babl-base-conversions-type.o  \
-       babl-base/babl-base-conversions-model.o \
-       babl-base/babl-base-models.o            \
-       babl-base/babl-base-pixel-formats.o     \
-       babl-classes.o                          \
-       babl-component.o                        \
-       babl-conversion.o                       \
-       babl-fish.o                             \
-       babl-image.o                            \
-       babl-introspect.o                       \
-       babl-memory.o                           \
-       babl-model.o                            \
-       babl-pixel-format.o                     \
-       babl-sampling.o                         \
-       babl-sanity.o                           \
-       babl-type.o                             \
-       babl-util.o                             \
-
-
-../tests/nop: ../tests/nop.c $(BABL_OBJECTS)
-       gcc -o $@ $< $(BABL_OBJECTS) -I../babl/ $(LDADD)
-
-../tests/introspect: ../tests/introspect.c $(BABL_OBJECTS)
-       gcc -o $@ $< $(BABL_OBJECTS) -I../babl/ $(LDADD)
-
-clean:
-       rm -f $(TARGETS) $(BABL_OBJECTS) ../*~ ../*/*~ ../*/*~
-